home *** CD-ROM | disk | FTP | other *** search
/ 3D Games - Real-time Rend…ng & Software Technology / 3D Games - Real-time Rendering & Software Technology.iso / flysdk / util / flyFonts / FontsDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-02-07  |  1.4 KB  |  58 lines

  1. // FontsDlg.h : header file
  2. //
  3.  
  4. #if !defined(AFX_FONTSDLG_H__28C3E4A5_DCBE_11D3_AC49_0080AD426F27__INCLUDED_)
  5. #define AFX_FONTSDLG_H__28C3E4A5_DCBE_11D3_AC49_0080AD426F27__INCLUDED_
  6.  
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CFontsDlg dialog
  13.  
  14. class CFontsDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18.     void DrawBMP();
  19.     CFontsDlg(CWnd* pParent = NULL);    // standard constructor
  20.  
  21.     LOGFONT lf;
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CFontsDlg)
  25.     enum { IDD = IDD_FONTS_DIALOG };
  26.     CButton    m_save;
  27.     CButton    m_256;
  28.     CButton    m_128;
  29.     //}}AFX_DATA
  30.  
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CFontsDlg)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.     HICON m_hIcon;
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CFontsDlg)
  43.     virtual BOOL OnInitDialog();
  44.     afx_msg void OnPaint();
  45.     afx_msg HCURSOR OnQueryDragIcon();
  46.     afx_msg void OnFont();
  47.     afx_msg void OnSave();
  48.     afx_msg void On256();
  49.     afx_msg void On128();
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined(AFX_FONTSDLG_H__28C3E4A5_DCBE_11D3_AC49_0080AD426F27__INCLUDED_)
  58.